ci: Drop gcc `-fanalyzer` by default
authorColin Walters <walters@verbum.org>
Sun, 15 May 2022 20:03:38 +0000 (16:03 -0400)
committerColin Walters <walters@verbum.org>
Mon, 16 May 2022 15:00:08 +0000 (11:00 -0400)
There's a pile of new warnings in GCC 12 from F36, I dug into
them but most of them seem inscrutable - I am not seeing the bugs.

For now to unblock further work, stop using this flag.

ci/build.sh

index ffdeba010112e9fec58c403531817549b98b0c7f..2afcd0188c8905a70eccf7be274644338c5b282d 100755 (executable)
@@ -30,6 +30,6 @@ esac
 
 # always fail on warnings; https://github.com/ostreedev/ostree/pull/971
 # NB: this disables the default set of flags from configure.ac
-export CFLAGS="-Wall -Werror -fanalyzer ${CFLAGS:-}"
+export CFLAGS="-Wall -Werror ${CFLAGS:-}"
 
 build --enable-gtk-doc ${CONFIGOPTS:-}